home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00005_Monitor List Scripts.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  5.0 KB  |  195 lines

  1. on IncrementMonitorList monitor
  2.   global givState
  3.   MessagePut("increment monitor" && monitor)
  4.   PlaySoundWait("CLIK1.AIF")
  5.   if count(the questionSelectList of givState) > 0 then
  6.     set the questionSelectList of givState to []
  7.     DisplayFromList()
  8.   end if
  9.   set lis to GetMonitorListByNumber(monitor)
  10.   if count(lis) = 0 then
  11.     exit
  12.   end if
  13.   set tmp to GetMonitorPtr(givState, monitor)
  14.   set tmp to tmp + 1
  15.   if tmp > count(lis) then
  16.     set tmp to 1
  17.   end if
  18.   SetMonitorPtr(givState, monitor, tmp)
  19.   SetActiveMonitor(monitor)
  20.   MessagePut("current clip:" && GetClipID(monitor))
  21.   DisplayMonitor(monitor)
  22.   if monitor = 1 then
  23.     SetAthleteFromMonitor(givState)
  24.   end if
  25.   SetQuestionTextBoxHilite(tmp)
  26. end
  27.  
  28. on DecrementMonitorList monitor
  29.   global givState
  30.   MessagePut("decrement monitor" && monitor)
  31.   PlaySoundWait("CLIK1.AIF")
  32.   if count(the questionSelectList of givState) > 0 then
  33.     set the questionSelectList of givState to []
  34.     DisplayFromList()
  35.   end if
  36.   set lis to GetMonitorListByNumber(monitor)
  37.   if count(lis) = 0 then
  38.     exit
  39.   end if
  40.   set tmp to GetMonitorPtr(givState, monitor)
  41.   set tmp to tmp - 1
  42.   if tmp < 1 then
  43.     set tmp to count(lis)
  44.   end if
  45.   MessagePut("setting ptr to count(lis), =" && tmp)
  46.   SetMonitorPtr(givState, monitor, tmp)
  47.   SetActiveMonitor(monitor)
  48.   MessagePut("current clip:" && GetClipID(monitor))
  49.   DisplayMonitor(monitor)
  50.   if monitor = 1 then
  51.     SetAthleteFromMonitor(givState)
  52.   end if
  53.   SetQuestionTextBoxHilite()
  54. end
  55.  
  56. on SetActiveMonitor monitor, override, init
  57.   global givState
  58.   if (monitor = the activeMonitor of givState) and voidp(override) then
  59.     MessagePut("SetActiveMonitor ignored, same value for monitor")
  60.     nothing()
  61.   else
  62.     MessagePut("setting active monitor:" && monitor)
  63.     set the activeMonitor of givState to monitor
  64.     if voidp(init) then
  65.       set the questionSelectList of givState to []
  66.     end if
  67.     SetMonitorIndicators(monitor)
  68.     SetQuestionTextBox(1)
  69.   end if
  70. end
  71.  
  72. on DisplayMonitor mon
  73.   global givState, givBASEMONITORSPRITE
  74.   MessagePut("display monitor" && mon & "...")
  75.   set clip to GetClipID(mon)
  76.   if clip = "none" then
  77.     set the castNum of sprite (givBASEMONITORSPRITE + mon) to the number of cast "colorbar.BMP"
  78.   else
  79.     set the castNum of sprite (givBASEMONITORSPRITE + mon) to the number of cast (clip & ".BMP")
  80.   end if
  81.   updateStage()
  82. end
  83.  
  84. on MonitorDialDrag
  85.   global givState
  86.   set H to 0
  87.   set H to the mouseH
  88.   PlaySoundWait("SCHWAK.AIF")
  89.   set executeOnce to 1
  90.   set mon to 0
  91.   if count(GetMonitorListByNumber(6)) > 0 then
  92.     set mon6Active to 1
  93.   else
  94.     set mon6Active to 0
  95.   end if
  96.   if count(the editList of givState) > 0 then
  97.     set mon3Active to 1
  98.   else
  99.     set mon3Active to 0
  100.   end if
  101.   if the mode of givState = #edit then
  102.     repeat while the mouseDown or executeOnce
  103.       if executeOnce then
  104.         set executeOnce to 0
  105.       else
  106.         set H to the mouseH
  107.       end if
  108.       if H < 66 then
  109.         SetMonitorIndicators(1)
  110.         set mon to 1
  111.         next repeat
  112.       end if
  113.       if H < 86 then
  114.         SetMonitorIndicators(2)
  115.         set mon to 2
  116.         next repeat
  117.       end if
  118.       if H < 106 then
  119.         SetMonitorIndicators(3)
  120.         set mon to 3
  121.         next repeat
  122.       end if
  123.       if (H < 136) and mon6Active then
  124.         SetMonitorIndicators(6)
  125.         set mon to 6
  126.         next repeat
  127.       end if
  128.       if H < 153 then
  129.         SetMonitorIndicators(4)
  130.         set mon to 4
  131.         next repeat
  132.       end if
  133.       SetMonitorIndicators(5)
  134.       set mon to 5
  135.     end repeat
  136.   else
  137.     repeat while the mouseDown or executeOnce
  138.       if executeOnce then
  139.         set executeOnce to 0
  140.       else
  141.         set H to the mouseH
  142.       end if
  143.       if H < 86 then
  144.         SetMonitorIndicators(1)
  145.         set mon to 1
  146.         next repeat
  147.       end if
  148.       if H < 106 then
  149.         if mon3Active then
  150.           SetMonitorIndicators(3)
  151.           set mon to 3
  152.         else
  153.           SetMonitorIndicators(1)
  154.           set mon to 1
  155.         end if
  156.         next repeat
  157.       end if
  158.       if (H < 136) and mon6Active then
  159.         SetMonitorIndicators(6)
  160.         set mon to 6
  161.         next repeat
  162.       end if
  163.       SetMonitorIndicators(4)
  164.       set mon to 4
  165.     end repeat
  166.   end if
  167.   SetActiveMonitor(mon)
  168. end
  169.  
  170. on SetMonitorIndicators monitor
  171.   global givDebug, givMONITORDIALSPRITE, givMONITORINDICATORSPRITE, givState
  172.   set monitorIndicatorH to [74, 74, 74, 401, 568, 238]
  173.   set monitorIndicatorV to [335, 223, 111, 109, 111, 109]
  174.   MessagePut("set indicator, mon = " & monitor)
  175.   set the castNum of sprite givMONITORDIALSPRITE to 172 + monitor
  176.   set the castNum of sprite givMONITORINDICATORSPRITE to the number of cast "base monitor indicator cast" + monitor - 1
  177.   set the locH of sprite givMONITORINDICATORSPRITE to getAt(monitorIndicatorH, monitor)
  178.   set the locV of sprite givMONITORINDICATORSPRITE to getAt(monitorIndicatorV, monitor)
  179.   updateStage()
  180. end
  181.  
  182. on GetRandomMonitor
  183.   set R to random(3)
  184.   if R = 1 then
  185.     set str to "static.BMP"
  186.   else
  187.     if R = 2 then
  188.       set str to "colorbar.BMP"
  189.     else
  190.       set str to "test.BMP"
  191.     end if
  192.   end if
  193.   return str
  194. end
  195.